adTempus API
ArcanaDevelopment.adTempus.Client.Collections Namespace / ADTObjectCollectionT<T> Class / Item Property / Item(Object) Property


In This Topic
    Item(Object) Property
    In This Topic
    Gets the object with the specified OID or numeric index.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Overloads Overridable ReadOnly Property Item( _
       ByVal index As Object _
    ) As T
    [CanBeNull()]
    public virtual T Item( 
       object index
    ) {get;}
    [CanBeNull()]
    public:
    virtual property T^ Item {
       T^ get(Object^ index);
    }

    Parameters

    index
    Exceptions
    ExceptionDescription
    Thrown if index is a numeric value that is outside the bounds of the collection.
    Thrown if index is not an integer, string, or OID.
    Remarks
    Returns null if no object with the requested OID is found.
    See Also